net/http.http2dataBuffer.chunks (field)

17 uses

	net/http (current package)
		h2_bundle.go#L1086: 	chunks   [][]byte
		h2_bundle.go#L1110: 		if b.r == len(b.chunks[0]) {
		h2_bundle.go#L1111: 			http2putDataBufferChunk(b.chunks[0])
		h2_bundle.go#L1112: 			end := len(b.chunks) - 1
		h2_bundle.go#L1113: 			copy(b.chunks[:end], b.chunks[1:])
		h2_bundle.go#L1114: 			b.chunks[end] = nil
		h2_bundle.go#L1115: 			b.chunks = b.chunks[:end]
		h2_bundle.go#L1123: 	if len(b.chunks) == 1 {
		h2_bundle.go#L1124: 		return b.chunks[0][b.r:b.w]
		h2_bundle.go#L1126: 	return b.chunks[0][b.r:]
		h2_bundle.go#L1156: 	if len(b.chunks) != 0 {
		h2_bundle.go#L1157: 		last := b.chunks[len(b.chunks)-1]
		h2_bundle.go#L1163: 	b.chunks = append(b.chunks, chunk)